home *** CD-ROM | disk | FTP | other *** search
- **
- ** termMem.asm
- **
- ** Memory management routines
- **
- ** Copyright © 1990-1995 by Olaf `Olsen' Barthel
- ** All Rights Reserved
- **
-
- csect text,0,0,1,2
-
- xref _FreeVecPooledLocal
- xdef _FreeVecPooled
-
- _FreeVecPooled:
-
- move.l (sp),a1
- bra _FreeVecPooledLocal
-
- xref _AllocVecPooledLocal
- xdef _AllocVecPooled
-
- _AllocVecPooled:
-
- move.l (sp),a0
- bra _AllocVecPooledLocal
-
- end
-